home *** CD-ROM | disk | FTP | other *** search
- on(release){
- _root.player.name = this.name;
- _root.player.cash = 30000;
- if(this.name == "cashmoney")
- {
- _root.player.cash = 100000000;
- }
- else if(this.name == "maxipadler")
- {
- _root.BuyCar(_root.car,_root.FERRARI);
- }
- else if(this.name == "g-unit")
- {
- _root.BuyCar(_root.car,_root.HUMMER);
- _root.car.cols = {rb:-200,bb:-200,gb:-200};
- }
- else if(this.name == "2fast4u")
- {
- _root.BuyCar(_root.car,_root.MCLAREN);
- }
- else if(this.name == "spyhunter")
- {
- _root.BuyCar(_root.car,_root.COMET);
- _root.car.cols = {rb:-100,bb:-100,gb:-100};
- }
- else if(this.name == "excellence")
- {
- _root.BuyCar(_root.car,_root.CARRERAGT);
- _root.car.cols = {rb:-100,bb:-100,gb:-100};
- }
- else if(this.name == "bondjamesbond")
- {
- _root.BuyCar(_root.car,_root.VANQUISH);
- _root.car.cols = {rb:-100,bb:-100,gb:-100};
- }
- else if(this.name == "unclepeanuts")
- {
- _root.BuyCar(_root.car,_root.SALEEN);
- _root.car.cols = {rb:-100,bb:-100,gb:-100};
- _root.car.HP = 2000;
- _root.car.TQ = 2000;
- _root.car.WT = 100;
- _root.car.CL = 5;
- }
- _root.gotoCarBuy();
- this.removeMovieClip();
- }
-